home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / analyse.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  243 b   |  11 lines  |  [TEXT/ttxt]

  1. #
  2. # Test of procedure analyse
  3. #
  4.  
  5. create table t1 (i int, j int);
  6. insert into t1 values (1,2), (3,4), (5,6), (7,8);
  7. select * from t1 procedure analyse();
  8. create table t2 select * from t1 procedure analyse();
  9. select * from t2;
  10. drop table t1,t2;
  11.